home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-17 | 1.4 KB | 50 lines | [TEXT/MPS ] |
- {–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
-
- PROJECT: Threads Traffic Simulation
-
- FILE: TestSkel.p
-
- LANGUAGE: MPW Pascal (version 3.2)
-
- DESCRIPTION: The main entry point of the application. The Initialization routines are
- called, the application is run, then cleanup is done. Nuff said.
-
- AUTHOR(S): William H. Knott
- Apple Computer
- Cupertino, CA 95014
- AppleLink : KNOTT
-
- VERSION(S): 1.0 13-Oct-91 WHK Brand New Today.
-
- –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––}
-
- PROGRAM TestSkel;
-
- USES
- MemTypes, QuickDraw, OSIntf, ToolIntf, PackIntf, Traps,
-
- UApplication, UInitMgmt, UEventMgmt;
-
- {$S Main}
- {––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––-––}
- { }
- { TheApp }
- { }
- { The reason for moving this not performing this code in the applications main }
- { routine is the desire global variables. Any that might need to be added could }
- { be done locally. }
- { }
- { October 13, 1991 Created by William Knott }
- { }
- {––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––-––}
- PROCEDURE TheApp;
- BEGIN
- InitProgram;
- RunApplication;
- CleanUpOnExit;
- END;
-
- BEGIN
- TheApp;
- END.
-